home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 February / SGI IRIX 6.5 Complementary Applications 2004 February.iso / dist / cde.idb / usr / dt / share / include / Xm / CascadeB.h.z / CascadeB.h
Encoding:
C/C++ Source or Header  |  2003-11-18  |  2.7 KB  |  91 lines

  1. /*
  2.  * CascadeB.h
  3.  *
  4.  * Copyright 2000, Silicon Graphics, Inc.
  5.  * ALL RIGHTS RESERVED
  6.  * 
  7.  * UNPUBLISHED -- Rights reserved under the copyright laws of the United
  8.  * States.   Use of a copyright notice is precautionary only and does not
  9.  * imply publication or disclosure.
  10.  *
  11.  * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
  12.  * Use, duplication or disclosure by the Government is subject to restrictions
  13.  * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
  14.  * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
  15.  * in similar or successor clauses in the FAR, or the DOD or NASA FAR
  16.  * Supplement.  Contractor/manufacturer is Silicon Graphics, Inc.,
  17.  * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
  18.  *
  19.  * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
  20.  * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
  21.  * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
  22.  * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
  23.  * GRAPHICS, INC.
  24.  */
  25. /* 
  26.  * @OSF_COPYRIGHT@
  27.  * (c) Copyright 1990, 1991, 1992, 1993, 1994 OPEN SOFTWARE FOUNDATION, INC.
  28.  * ALL RIGHTS RESERVED
  29.  *  
  30. */ 
  31. /*
  32.  * HISTORY
  33.  * Motif Release 1.2.5
  34. */
  35. /*   $XConsortium: CascadeB.h /main/cde1_maint/2 1995/08/18 18:52:50 drk $ */
  36. /*
  37. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  38. /*
  39. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  40. #ifndef _XmCascadeB_h
  41. #define _XmCascadeB_h
  42.  
  43. #include <Xm/Xm.h>
  44.  
  45. #ifdef __cplusplus
  46. extern "C" {
  47. #endif
  48.  
  49. externalref WidgetClass xmCascadeButtonWidgetClass;
  50.  
  51. typedef struct _XmCascadeButtonRec      * XmCascadeButtonWidget;
  52. typedef struct _XmCascadeButtonClassRec * XmCascadeButtonWidgetClass;
  53.  
  54. /* fast subclass define */
  55. #ifndef XmIsCascadeButton 
  56. #define XmIsCascadeButton(w) XtIsSubclass(w, xmCascadeButtonWidgetClass)
  57. #endif /* XmIsCascadeButton */
  58.  
  59.  
  60. /********    Public Function Declarations    ********/
  61. #ifdef _NO_PROTO
  62.  
  63. extern Widget XmCreateCascadeButton() ;
  64. extern void XmCascadeButtonHighlight() ;
  65.  
  66. #else
  67.  
  68. extern Widget XmCreateCascadeButton( 
  69.                         Widget parent,
  70.                         char *name,
  71.                         ArgList al,
  72.                         Cardinal ac) ;
  73. extern void XmCascadeButtonHighlight( 
  74.                         Widget cb,
  75. #if NeedWidePrototypes
  76.                         int highlight) ;
  77. #else
  78.                         Boolean highlight) ;
  79. #endif /* NeedWidePrototypes */
  80.  
  81. #endif /* _NO_PROTO */
  82. /********    End Public Function Declarations    ********/
  83.  
  84.  
  85. #ifdef __cplusplus
  86. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  87. #endif
  88.  
  89. #endif /* _XmCascadeB_h */
  90. /* DON'T ADD STUFF AFTER THIS #endif */
  91.